Skip to content

Comments

chore: update dependencies#224

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/dependencies
Open

chore: update dependencies#224
renovate[bot] wants to merge 1 commit intomainfrom
renovate/dependencies

Conversation

@renovate
Copy link

@renovate renovate bot commented Aug 18, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

Update Request | Renovate Bot

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action digest 8e8c4830c366fd
actions/stale action digest 9971854b5d41d4
alpine final minor 3.213.23 age adoption passing confidence
docker/dockerfile-upstream syntax minor 1.14.1-labs1.21.0-labs age adoption passing confidence
docker/login-action action digest 5e57cd13227f53
docker/setup-buildx-action action digest e4681717c525be
github.com/google/cel-go replace minor v0.22.0v0.27.0 age adoption passing confidence
github.com/onsi/gomega require minor v1.38.2v1.39.1 age adoption passing confidence
github.com/siderolabs/capi-utils require digest 4ee8a1b995e8c6 age adoption passing confidence
github.com/siderolabs/talos/pkg/machinery require patch v1.12.0v1.12.4 age adoption passing confidence
golang.org/x/sync require minor v0.18.0v0.19.0 age adoption passing confidence
google.golang.org/grpc require minor v1.76.0v1.79.1 age adoption passing confidence
google.golang.org/protobuf require patch v1.36.10v1.36.11 age adoption passing confidence
k8s.io/api require minor v0.32.3v0.35.1 age adoption passing confidence
k8s.io/apiextensions-apiserver require minor v0.32.3v0.35.1 age adoption passing confidence
k8s.io/apimachinery require minor v0.32.3v0.35.1 age adoption passing confidence
k8s.io/apiserver require minor v0.32.3v0.35.1 age adoption passing confidence
k8s.io/client-go require minor v0.32.3v0.35.1 age adoption passing confidence
k8s.io/component-base require minor v0.32.3v0.35.1 age adoption passing confidence
k8s.io/utils require digest bc988d5b8788ab age adoption passing confidence
kenchan0130/actions-system-info action digest 5969959bc4d96a
sigs.k8s.io/cluster-api require minor v1.10.9v1.12.3 age adoption passing confidence
sigs.k8s.io/controller-runtime require minor v0.20.4v0.23.1 age adoption passing confidence
slackapi/slack-github-action action digest 91efab1bb7fade
softprops/action-gh-release action digest a06a81ae798e6a

Release Notes

google/cel-go (github.com/google/cel-go)

v0.27.0

Compare Source

Release Summary

This release focuses on improving developer tooling and stability. Key highlights include significant enhancements to the REPL (YAML configuration support and parse-only evaluation), the addition of cost estimation for regex operations, and improved test coverage reporting.

On the stability front, this release addresses race conditions in reference types, improves namespace resolution, and ensures formatting directives align strictly with the CEL specification.

Note: This release includes a breaking change regarding how types are handled as variables. Please review the "Breaking Changes" section below.

⚠ Breaking Changes

Remove types as variables: The logic for handling types has been relaxed to support safe rollout of feature packages which introduce new types whose names may collide with existing variables. Please review your policies if you relied on types behaving strictly as variables in previous versions. PR #​1262

Features & Enhancements

REPL & Tooling
  • YAML Configuration: The REPL now supports reading and writing YAML environment configurations. PR #​1250

  • Parse-Only Mode: Added parse-only evaluation capabilities to the REPL. PR #​1254

  • Test Coverage: Introduced logic for CEL test coverage calculation and updated the reporter to handle error/unknown scenarios.PR #​1209 & PR #​1215

Core Library
  • Regex Costing: Added support for cost estimation and tracking within the regex library. PR #​1200

  • JSON Type Exposure: Exposed CEL JSON types to assist developers in converting to native values. PR #​1261

  • Policy Composition: Source information is now preserved during CEL policy composition, aiding in debugging. PR #​1253

Extensibility:
  • Updated extension option factory to resolve by ID (#​1249).

  • Refactored match output compiling to accept user-defined logic (#​1246).

  • Exposed Match source ID to callers (#​1227).

Build & Maintenance
  • Bazel: Migrated to use Bazel module only and improved configuration for dependent builds. PR #​1231 & PR #​1228

  • Cleanup: Removed strcase dependency, removed AppEngine code from REPL, and performed general linting. PR #​1230, #​1216, #​1251

Bug Fixes
  • Concurrency: Fixed a race condition in the checker regarding reference types. PR #​1224

  • Namespace Resolution: Addressed an issue with namespace resolution. PR #​1256

  • Spec Compliance: Fixed formatting directives to fully support requirements documented in the cel-spec. PR #​1232

New Contributors

Full Changelog: google/cel-go@v0.26.1...v0.27.0

v0.26.1

Compare Source

What's Changed

New Contributors

Full Changelog: google/cel-go@v0.25.1...v0.26.1

v0.26.0

Compare Source

New Features ✨
Bug Fixes 🐛
Test Updates 🧪
Documentation 📚
Dependency Updates ⬆️

v0.25.1

Compare Source

v0.25.0

Compare Source

Features & Enhancements

This release introduces features for richer configuration-based CEL, AI prompt generation from config files, additional documentation, and 3x performance when evaluating traced / state-tracking expressions. This release also introduces a unit test runner framwork.

#​1141: Expose extension option factory as a public method

#​1143: Add a new compiler tool which can be used to compile CEL expressions and policies using serialized environment

#​1151: Lightweight observable evaluation

#​1155: Utilities for formatting and parsing documentation strings

#​1156: Support for documentation and example strings in CEL environments

#​1158: Re-export interpreter.AttributePattern in package cel.

#​1159: Document the standard library macros and functions

#​1160: Prompt generation for AI-assisted authoring based on a CEL environment

#​1117: Add LateFunctionBinding declaration and fix constant folding

#​1163: Initialize stateful observers prior to evaluation

#​1164: Unparse Expr values to strings

#​1149: Add test runner library

#​1167: REPL: Add an extension option for two var comprehensions

Fixes

Several fixes were implemented, including updating strings.format to better adhere to the specification, correcting constant folding logic alongside the late binding feature, removing a non-functional check in test code, and adding argument count validation for optFieldSelect.

#​1133: Update strings.format to adhere to the specification

#​1117: Add LateFunctionBinding declaration and fix constant folding

#​1161: Remove non-functional optional check in test-only selection

#​1168: Check arg count when validating optFieldSelect

Refactoring & Internal Improvements

General refactoring was performed across the codebase. Coverage and comments for Activation methods were improved. The test runner library was refactored to create options from flags and improve code structure.

#​1145: Refactoring changes

#​1150: Additional comments and coverage for Activation methods

#​1165: Refactoring changes to create a test runner option from passed flags, correct indentation and add package level comment for test

Documentation

Documentation was enhanced, including updates to the NativeTypes documentation regarding the cel tag, adding documentation for the optional library, and documenting the standard library functions/macros as part of the documentation string feature.

#​1148: Update NativeTypes doc to reflect how to enable cel tag

#​1155: Utilities for formatting and parsing documentation strings

#​1156: Support for documentation and example strings in CEL environments

#​1159: Document the standard library macros and functions

#​1162: Document optional library and increase docs coverage

Build System

Configuration fixes were made for Bzlmod compatibility.

#​1146: Bzlmod configuration fixes

Type System

Type formatting was updated to correctly handle type parameters.

#​1154: Update type formatting for type params

v0.24.1

Compare Source

Fixes

  • Separate unnest optimization from composer to capture type info [#​1138]

Full Changelog: google/cel-go@v0.24.0...v0.24.1

v0.24.0

Compare Source

Support for subsetting CEL standard library and serialization of CEL environments to YAML.

CEL is an official Google product [#​1122]

Features

  • Helper methods for subsetting function overloads [#​1120]
  • Introduce cel package aliases for Activation [#​1123]
  • Canonical environment description and stdlib subsetting [#​1125]
  • Support for cel.Env conversion to YAML-serializable config [#​1128]
  • Option to configure CEL via env.Config object [#​1129]
  • Support for feature flags and validators in env.Config [#​1132]
  • Add k8s custom policy tag handler for test [#​1121]

Fixes

  • ContextEval support for Unknowns [#​1126]
  • Fix godoc formatting for Lists and OptionalTypes functions [#​1127]
  • Default enable DefaultUTCTimeZone [#​1130]
  • Support for splitting nested branching operators within policies [#​1136]

New Contributors

Full Changelog: google/cel-go@v0.23.2...v0.24.0

v0.23.2

Compare Source

Corrects one remaining issue for cost computations from the v0.23.0 releases

Fixes

Full Changelog: google/cel-go@v0.23.1...v0.23.2

v0.23.1

Compare Source

Minor release to address cost tracking and size estimation [#​1113]

Full Changelog: google/cel-go@v0.23.0...v0.23.1

v0.23.0

Compare Source

Features

  • First and last element in list support [#​1067]
  • Add support for typed conformance tests. [#​1089]
  • Add syntax for escaped field selectors. [#​1002]
  • Add optional.unwrap() / .unwrapOpt() function [#​1103]
  • Cost tracking for two-variable comprehensions and bindings [#​1104]

Fixes

PR #​1099 enables a change in the internal variable name used for comprehension result accumulation. This change may break some tests which inspect the AST contents in text form; however, will not break any existing uses of CEL during parse, check, or evaluation.

  • Improve policy compiler error message for incompatible outputs. [#​1082]
  • Fix partial evaluation with the comprehension folder objects [#​1084]
  • Introduce versioning options to all extensions [#​1075]
  • Fix a crash in mismatched output check for nested rules [#​1086]
  • improve debug output to properly quote byte strings [#​1088]
  • Fix two-variable comprehension pruning [#​1083]
  • Replace checks for valid UTF-8 in strings with go-maintained calls [#​1094]
  • Policy nested rule fix [#​1092]
  • Address non-const format string lint findings [#​1096]
  • Fix typos in ext/README.md [#​1098]
  • Add option to use inaccessible accumulator var [#​1097]
  • Add test cases for string.format covering various edge cases [#​1101]
  • Add base_config and partial_config files under restricted_destination testdata [#​1106]
  • Default enable using hidden accumulator name [#​1099]
  • Update PruneAst to support constants of optional type [#​1109]

New Contributors

Full Changelog: google/cel-go@v0.22.1...v0.23.0

v0.22.1

Compare Source

Fixes

  • Additional hardening on legacy macros [#​1064]
  • Additional nil-safety checks with corresponding test updates [#​1073]
  • Add two-variable comprehension support to cel-policy [#​1074]
  • Fix optional test to short-circuit [#​1076]
  • Fix nil-type when two-var comprehension has a dyn range [#​1077]

New Contributors

Full Changelog: google/cel-go@v0.22.0...v0.22.1

onsi/gomega (github.com/onsi/gomega)

v1.39.1

Compare Source

1.39.1

Update all dependencies. This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.

v1.39.0

Compare Source

1.39.0

Features

Add MatchErrorStrictly which only passes if errors.Is(actual, expected) returns true. MatchError, by contrast, will fallback to string comparison.

v1.38.3

Compare Source

1.38.3

Fixes

make string formatitng more consistent for users who use format.Object directly

siderolabs/talos (github.com/siderolabs/talos/pkg/machinery)

v1.12.4

Compare Source

Talos 1.12.4 (2026-02-13)

Welcome to the v1.12.4 release of Talos!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/talos/issues.

KubeSpan Advertised Network Filters

KubeSpan now supports filtering of advertised networks using the excludeAdvertisedNetworks field in the KubeSpanConfig document.
This allows users to specify a list of CIDRs to exclude from the advertised networks. Please note that routing must be symmetric for any
pair of peers, so if one peer excludes a certain network, the other peer must also exclude it. In other words, for any given pair of peers,
and any pair of their addresses, the traffic should either go through KubeSpan or not, but not one way or the other.

Component Updates

Linux: 6.18.9

Talos is built with Go 1.25.7.

Contributors
  • Andrey Smirnov
  • Daniil Kivenko
  • Florian Ströger
  • Fritz Schaal
  • Mateusz Urbanek
Changes
9 commits

  • @​fc8e600 release(v1.12.4): prepare release
  • @​14dde14 feat: add filter for KubeSpan advertised networks
  • @​c277d01 fix: ignore volumes in wave calculation without provisioning
  • @​f90af88 fix: use node podCIDRs for kubespan advertiseKubernetesNetworks
  • @​a025ea4 feat: add IPv6 GRE support
  • @​9241254 fix: typo with rpi_5 profile name
  • @​64f4985 fix: swap volume configuration for min/max size
  • @​19354ab feat: update Linux to 6.18.9
  • @​639c1c9 fix: mismerge of nft with json support

Changes from siderolabs/discovery-api
2 commits

Changes from siderolabs/pkgs
4 commits

Dependency Changes
  • github.com/siderolabs/discovery-api v0.1.6 -> v0.1.8
  • github.com/siderolabs/pkgs v1.12.0-35-g15d5d78 -> v1.12.0-39-gb1fc4c6

Previous release can be found at v1.12.3

Images

ghcr.io/siderolabs/flannel:v0.27.4
registry.k8s.io/coredns/coredns:v1.13.2
registry.k8s.io/etcd:v3.6.7
registry.k8s.io/kube-apiserver:v1.35.0
registry.k8s.io/kube-controller-manager:v1.35.0
registry.k8s.io/kube-scheduler:v1.35.0
registry.k8s.io/kube-proxy:v1.35.0
ghcr.io/siderolabs/kubelet:v1.35.0
registry.k8s.io/pause:3.10
ghcr.io/siderolabs/installer:v1.12.4
ghcr.io/siderolabs/installer-base:v1.12.4
ghcr.io/siderolabs/imager:v1.12.4
ghcr.io/siderolabs/talos:v1.12.4
ghcr.io/siderolabs/talosctl-all:v1.12.4
ghcr.io/siderolabs/overlays:v1.12.4
ghcr.io/siderolabs/extensions:v1.12.4

v1.12.3

Compare Source

Talos 1.12.3 (2026-02-07)

Welcome to the v1.12.3 release of Talos!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/talos/issues.

Component Updates

Linux: 6.18.8

Talos is built with Go 1.25.7.

Contributors
  • Andrey Smirnov
  • Mateusz Urbanek
  • Andrei Kvapil
  • Gregor Gruener
  • Matthew Sanabria
Changes
14 commits

Changes from siderolabs/pkgs
3 commits

Changes from siderolabs/tools
2 commits

Dependency Changes
  • github.com/siderolabs/pkgs v1.12.0-32-g4f8efaf -> v1.12.0-35-g15d5d78
  • github.com/siderolabs/talos/pkg/machinery v1.12.2 -> v1.12.3
  • github.com/siderolabs/tools v1.12.0-4-g31959f4 -> v1.12.0-6-gdc37e09

Previous release can be found at v1.12.2

Images

ghcr.io/siderolabs/flannel:v0.27.4
registry.k8s.io/coredns/coredns:v1.13.2
registry.k8s.io/etcd:v3.6.7
registry.k8s.io/kube-apiserver:v1.35.0
registry.k8s.io/kube-controller-manager:v1.35.0
registry.k8s.io/kube-scheduler:v1.35.0
registry.k8s.io/kube-proxy:v1.35.0
ghcr.io/siderolabs/kubelet:v1.35.0
registry.k8s.io/pause:3.10
ghcr.io/siderolabs/installer:v1.12.3
ghcr.io/siderolabs/installer-base:v1.12.3
ghcr.io/siderolabs/imager:v1.12.3
ghcr.io/siderolabs/talos:v1.12.3
ghcr.io/siderolabs/talosctl-all:v1.12.3
ghcr.io/siderolabs/overlays:v1.12.3
ghcr.io/siderolabs/extensions:v1.12.3

v1.12.2

Compare Source

Talos 1.12.2 (2026-01-22)

Welcome to the v1.12.2 release of Talos!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/talos/issues.

talosctl images talos-bundle can ignore reaching to the registry

The talosctl images talos-bundle command now accepts optional --ovelays and --extensions flags.
If those are set to false, the command will not attempt to reach out to the container registry to fetch the latest versions and digests of the overlays and extensions.

Component Updates

Linux: 6.18.5

Talos is built with Go 1.25.6.

Contributors
  • Andrey Smirnov
  • Dmitrii Sharshakov
  • Andras BALI
  • Artem Chernyshev
  • Jonas Lammler
  • Mateusz Urbanek
  • Max Makarov
  • Noel Georgi
Changes
21 commits

  • @​54e5b43 release(v1.12.2): prepare release
  • @​30da0bc fix: oracle platform file format
  • @​7ddb37b fix: make OOM expression a bit less sensitive
  • @​e438ec2 fix: marshal of FailOverMac property
  • @​717ed72 fix: check if the device is not mounted when wiping
  • @​c95c9fd fix: wipe the first/last 1MiB in addition to wiping by signatures
  • @​52bed35 fix: add talos version to Hetzner Cloud client user agent
  • @​0e447a4 fix: make OOM controller more precise by considering separate cgroup PSI
  • @​3b974b9 fix: sort mirrors and tls configs when generating the machine config
  • @​8b16fe5 feat: add VLAN support to OpenStack platform
  • @​eb8480c fix: panic in configpatcher when the whole section is missing
  • @​4d44306 fix: wipe disk by signatures
  • @​cca4cd2 feat: add it87 hwmon module
  • @​d9480ee fix: resolve SideroLink Wireguard endpoint on reconnect
  • @​e16c2d5 fix: handle correctly incomplete RegistryTLSConfig
  • @​dedd273 fix: bond config via platform
  • @​f527cff fix: allow HostnameConfig to be used with incomplete machine config
  • @​1091813 fix: lock down etcd listen address to IPv4 localhost
  • @​9f8d938 fix: print talosctl images to release notes
  • @​95433c1 fix: update VIP config example
  • @​919394f feat: update Go to 1.25.6

Changes from siderolabs/pkgs
7 commits

Changes from siderolabs/tools
1 commit

Dependency Changes
  • github.com/klauspost/compress v1.18.2 -> v1.18.3
  • github.com/siderolabs/go-blockdevice/v2 v2.0.22 -> v2.0.23
  • github.com/siderolabs/pkgs v1.12.0-25-g90ff196 -> v1.12.0-32-g4f8efaf
  • github.com/siderolabs/talos/pkg/machinery v1.12.1 -> v1.12.2
  • github.com/siderolabs/tools v1.12.0-3-g5df8bae -> v1.12.0-4-g31959f4
  • go.uber.org/zap v1.27.0 -> v1.27.1
  • golang.org/x/net v0.47.0 -> v0.48.0
  • golang.org/x/oauth2 v0.33.0 -> v0.34.0
  • golang.org/x/sync v0.18.0 -> v0.19.0
  • golang.org/x/sys v0.38.0 -> v0.40.0
  • golang.org/x/term v0.37.0 -> v0.38.0
  • golang.org/x/text v0.31.0 -> v0.33.0

Previous release can be found at v1.12.1

Images

ghcr.io/siderolabs/flannel:v0.27.4
registry.k8s.io/coredns/coredns:v1.13.2
registry.k8s.io/etcd:v3.6.7
registry.k8s.io/kube-apiserver:v1.35.0
registry.k8s.io/kube-controller-manager:v1.35.0
registry.k8s.io/kube-scheduler:v1.35.0
registry.k8s.io/kube-proxy:v1.35.0
ghcr.io/siderolabs/kubelet:v1.35.0
registry.k8s.io/pause:3.10
ghcr.io/siderolabs/installer:v1.12.2
ghcr.io/siderolabs/installer-base:v1.12.2
ghcr.io/siderolabs/imager:v1.12.2
ghcr.io/siderolabs/talos:v1.12.2
ghcr.io/siderolabs/talosctl-all:v1.12.2
ghcr.io/siderolabs/overlays:v1.12.2
ghcr.io/siderolabs/extensions:v1.12.2

v1.12.1

Compare Source

Talos 1.12.1 (2026-01-05)

Welcome to the v1.12.1 release of Talos!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/talos/issues.

Component Updates

Linux: 6.18.2

Talos is built with Go 1.25.5.

Contributors
  • Mateusz Urbanek
  • Andrey Smirnov
  • Dmitrii Sharshakov
Changes
7 commits

Changes from siderolabs/pkgs
2 commits

Changes from siderolabs/tools
1 commit

Dependency Changes
  • github.com/klauspost/compress v1.18.1 -> v1.18.2
  • github.com/siderolabs/go-blockdevice/v2 v2.0.20 -> v2.0.22
  • github.com/siderolabs/pkgs v1.12.0-23-ge0b78b8 -> v1.12.0-25-g90ff196
  • github.com/siderolabs/talos/pkg/machinery v1.12.0 -> v1.12.1
  • github.com/siderolabs/tools v1.12.0-2-g7d57df0 -> v1.12.0-3-g5df8bae

Previous release can be found at v1.12.0

Images

ghcr.io/siderolabs/flannel:v0.27.4
registry.k8s.io/coredns/coredns:v1.13.2
registry.k8s.io/etcd:v3.6.7
registry.k8s.io/kube-apiserver:v1.35.0
registry.k8s.io/kube-controller-manager:v1.35.0
registry.k8s.io/kube-scheduler:v1.35.0
registry.k8s.io/kube-proxy:v1.35.0
ghcr.io/siderolabs/kubelet:v1.35.0
registry.k8s.io/pause:3.10
grpc/grpc-go (google.golang.org/grpc)

v1.79.1: Release 1.79.1

Compare Source

Bug Fixes

  • grpc: Remove the -dev suffix from the User-Agent header. (#​8902)

v1.79.0: Release 1.79.0

Compare Source

API Changes

  • mem: Add experimental API SetDefaultBufferPool to change the default buffer pool. (#​8806)
  • experimental/stats: Update MetricsRecorder to require embedding the new UnimplementedMetricsRecorder (a no-op struct) in all implementations for forward compatibility. (#​8780)

Behavior Changes

  • balancer/weightedtarget: Remove handling of Addresses and only handle Endpoints in resolver updates. (#​8841)

New Features

  • experimental/stats: Add support for asynchronous gauge metrics through the new AsyncMetricReporter and RegisterAsyncReporter APIs. (#​8780)
  • pickfirst: Add support for weighted random shuffling of endpoints, as described in gRFC A113.
    • This is enabled by default, and can be turned off using the environment variable GRPC_EXPERIMENTAL_PF_WEIGHTED_SHUFFLING. (#​8864)
  • xds: Implement :authority rewriting, as specified in gRFC A81. (#​8779)
  • balancer/randomsubsetting: Implement the random_subsetting LB policy, as specified in gRFC A68. (#​8650)
  • server: Include status detail headers, if available, when terminating a stream during request header processing. (#​8754)

Bug Fixe


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Author

renovate bot commented Aug 18, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 13 additional dependencies were updated

Details:

Package Change
github.com/google/gnostic-models v0.6.8 -> v0.6.9
github.com/prometheus/client_golang v1.19.1 -> v1.22.0
github.com/prometheus/common v0.55.0 -> v0.62.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 -> v0.58.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.33.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.33.0
go.opentelemetry.io/proto/otlp v1.3.1 -> v1.4.0
golang.org/x/crypto v0.38.0 -> v0.39.0
golang.org/x/net v0.40.0 -> v0.41.0
golang.org/x/text v0.25.0 -> v0.26.0
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f -> v0.0.0-20250318190949-c8a335a9a2ff
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 -> v0.31.2
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 -> v4.6.0

@github-project-automation github-project-automation bot moved this to To Do in Planning Aug 18, 2025
@talos-bot talos-bot moved this from To Do to In Review in Planning Aug 18, 2025
@smira smira removed this from Planning Aug 18, 2025
@renovate renovate bot force-pushed the renovate/dependencies branch from 0f40d3a to 4f0cfd9 Compare August 23, 2025 15:57
@renovate
Copy link
Author

renovate bot commented Aug 23, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: downloading github.com/siderolabs/cluster-api-bootstrap-provider-talos v0.6.11
go: downloading github.com/spf13/pflag v1.0.10
go: downloading k8s.io/api v0.35.1
go: downloading k8s.io/apimachinery v0.35.1
go: downloading k8s.io/client-go v0.35.1
go: downloading k8s.io/component-base v0.35.1
go: downloading k8s.io/klog/v2 v2.130.1
go: downloading sigs.k8s.io/cluster-api v1.12.3
go: downloading sigs.k8s.io/controller-runtime v0.23.1
go: downloading github.com/go-logr/logr v1.4.3
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/siderolabs/talos/pkg/machinery v1.12.4
go: downloading google.golang.org/grpc v1.79.1
go: downloading k8s.io/apiserver v0.35.1
go: downloading k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2
go: downloading github.com/gobuffalo/flect v1.0.3
go: downloading github.com/onsi/gomega v1.39.1
go: downloading github.com/siderolabs/crypto v0.6.4
go: downloading github.com/siderolabs/gen v0.8.6
go: downloading github.com/stretchr/testify v1.11.1
go: downloading golang.org/x/sync v0.19.0
go: downloading google.golang.org/protobuf v1.36.11
go: downloading k8s.io/apiextensions-apiserver v0.35.1
go: downloading github.com/coreos/go-semver v0.3.1
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/siderolabs/capi-utils v0.0.0-20260203103127-995e8c672207
go: downloading github.com/siderolabs/go-retry v0.3.3
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/google/go-cmp v0.7.0
go: downloading k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912
go: downloading sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482
go: downloading github.com/evanphx/json-patch/v5 v5.9.11
go: downloading gomodules.xyz/jsonpatch/v2 v2.5.0
go: downloading sigs.k8s.io/randfill v1.0.0
go: downloading github.com/planetscale/vtprotobuf v0.6.1-0.20241121165744-79df5c4772f2
go: downloading github.com/cosi-project/runtime v1.12.0
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading github.com/siderolabs/go-api-signature v0.3.12
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217
go: downloading go.yaml.in/yaml/v4 v4.0.0-rc.3
go: downloading github.com/containerd/go-cni v1.1.13
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/fsnotify/fsnotify v1.9.0
go: downloading go.uber.org/zap v1.27.1
go: downloading github.com/siderolabs/go-pointer v1.0.1
go: downloading github.com/opencontainers/runtime-spec v1.2.1
go: downloading github.com/siderolabs/protoenc v0.2.4
go: downloading golang.org/x/net v0.49.0
go: downloading gopkg.in/evanphx/json-patch.v4 v4.13.0
go: downloading github.com/go-logr/zapr v1.3.0
go: downloading github.com/spf13/viper v1.21.0
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730
go: downloading github.com/json-iterator/go v1.1.12
go: downloading go.yaml.in/yaml/v2 v2.4.3
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading github.com/spf13/cobra v1.10.1
go: downloading golang.org/x/term v0.39.0
go: downloading github.com/emicklei/go-restful/v3 v3.13.0
go: downloading github.com/prometheus/client_golang v1.23.2
go: downloading golang.org/x/time v0.14.0
go: downloading github.com/google/btree v1.1.3
go: downloading github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
go: downloading github.com/ProtonMail/gopenpgp/v2 v2.9.0
go: downloading github.com/adrg/xdg v0.5.3
go: downloading github.com/containernetworking/cni v1.3.0
go: downloading github.com/sasha-s/go-deadlock v0.3.5
go: downloading golang.org/x/sys v0.40.0
go: downloading k8s.io/cluster-bootstrap v0.34.2
go: downloading go.yaml.in/yaml/v3 v3.0.4
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/dustin/go-humanize v1.0.1
go: downloading github.com/google/cel-go v0.27.0
go: downloading github.com/siderolabs/net v0.4.0
go: downloading github.com/jsimonetti/rtnetlink/v2 v2.1.0
go: downloading github.com/mdlayher/ethtool v0.4.0
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading github.com/go-viper/mapstructure/v2 v2.4.0
go: downloading github.com/sagikazarmark/locafero v0.11.0
go: downloading github.com/spf13/afero v1.15.0
go: downloading github.com/spf13/cast v1.10.0
go: downloading github.com/google/go-github/v53 v53.2.0
go: downloading golang.org/x/oauth2 v0.34.0
go: downloading github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46
go: downloading github.com/fxamacker/cbor/v2 v2.9.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/google/gnostic-models v0.7.0
go: downloading go.opentelemetry.io/otel v1.39.0
go: downloading github.com/NYTimes/gziphandler v1.1.1
go: downloading github.com/go-openapi/jsonreference v0.21.0
go: downloading github.com/go-openapi/swag v0.23.0
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading github.com/prometheus/common v0.66.1
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/prometheus/procfs v0.19.2
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217
go: downloading github.com/gertd/go-pluralize v0.2.1
go: downloading github.com/ProtonMail/go-crypto v1.3.0
go: downloading github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f
go: downloading github.com/petermattis/goid v0.0.0-20250508124226-395b08cebbdb
go: downloading golang.org/x/text v0.33.0
go: downloading cel.dev/expr v0.25.1
go: downloading github.com/ryanuber/go-glob v1.0.0
go: downloading github.com/mdlayher/netlink v1.8.0
go: downloading github.com/josharian/native v1.1.0
go: downloading github.com/mdlayher/genetlink v1.3.2
go: downloading github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8
go: downloading github.com/subosito/gotenv v1.6.0
go: downloading github.com/pelletier/go-toml/v2 v2.2.4
go: downloading github.com/google/go-querystring v1.1.0
go: downloading github.com/MakeNowJust/heredoc v1.0.0
go: downloading github.com/distribution/reference v0.6.0
go: downloading github.com/x448/float16 v0.8.4
go: downloading go.opentelemetry.io/otel/trace v1.39.0
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0
go: downloading go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0
go: downloading go.opentelemetry.io/otel/sdk v1.39.0
go: downloading github.com/go-openapi/jsonpointer v0.21.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading golang.org/x/crypto v0.47.0
go: downloading github.com/cloudflare/circl v1.6.1
go: downloading github.com/mdlayher/socket v0.5.1
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading go.opentelemetry.io/otel/metric v1.39.0
go: downloading go.opentelemetry.io/proto/otlp v1.5.0
go: downloading github.com/kylelemons/godebug v1.1.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/antlr4-go/antlr/v4 v4.13.1
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading go.opentelemetry.io/auto/sdk v1.2.1
go: downloading sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2
go: downloading golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6
go: github.com/siderolabs/cluster-api-control-plane-provider-talos imports
	sigs.k8s.io/cluster-api/api/v1beta1: cannot find module providing package sigs.k8s.io/cluster-api/api/v1beta1

@renovate renovate bot force-pushed the renovate/dependencies branch from 4f0cfd9 to c71b548 Compare August 24, 2025 19:13
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from 4a67b3f to 34d2544 Compare September 4, 2025 23:41
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from d9f3459 to 5073e12 Compare September 11, 2025 03:29
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from f2f8165 to 6c9caa5 Compare September 26, 2025 12:12
@renovate renovate bot force-pushed the renovate/dependencies branch 6 times, most recently from 25043f5 to 96415b9 Compare October 6, 2025 19:50
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from fe7bf4e to 4272d52 Compare October 11, 2025 08:08
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 62c395a to e848c17 Compare October 21, 2025 10:10
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from f8e02f1 to 64f37d2 Compare November 9, 2025 03:48
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 8a29a00 to 4f1e927 Compare January 7, 2026 12:00
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from 5f2d523 to 8384af8 Compare January 13, 2026 07:38
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 9dce3de to 42a34c6 Compare January 22, 2026 07:36
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from d246ac9 to 096b4f0 Compare January 28, 2026 23:37
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 71767d9 to b58c477 Compare February 4, 2026 07:30
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from d9a94ca to d0c1c5b Compare February 13, 2026 08:00
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 3cbdfe9 to 673fceb Compare February 20, 2026 07:44
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/dependencies branch from 673fceb to eedc80e Compare February 21, 2026 03:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants